www.gusucode.com > C++系统字体预览工具+程序源码 > C++系统字体预览工具+程序源码/code/Font Previewer/about.cpp

    //---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include "about.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TfrmAbout *frmAbout;
//---------------------------------------------------------------------------
__fastcall TfrmAbout::TfrmAbout(TComponent* Owner)
  : TForm(Owner)
{
}
//---------------------------------------------------------------------------


void __fastcall TfrmAbout::Button1Click(TObject *Sender)
{
  Close();  
}
//---------------------------------------------------------------------------
void __fastcall TfrmAbout::Label4Click(TObject *Sender)
{
    ShellExecute(0,"open","http://go.163.com/maxpace",0,0,SW_SHOWNORMAL);  
}
//---------------------------------------------------------------------------

void __fastcall TfrmAbout::Label3Click(TObject *Sender)
{
    ShellExecute(0, "open", "mailto:maxchou@china.com", 0, 0, SW_SHOWNORMAL);  
}
//---------------------------------------------------------------------------